type runtime.funcval

16 uses

	runtime (current package)
		cgocall.go#L327: 	cbFV := funcval{uintptr(fn)}
		debugcall.go#L124: 		newg := newproc1(*(**funcval)(unsafe.Pointer(&fn)), gp, callerpc)
		debugcall.go#L245: 	dispatchFV := funcval{dispatch}
		heapdump.go#L225: func dumpfinalizer(obj unsafe.Pointer, fn *funcval, fint *_type, ot *ptrtype) {
		heapdump.go#L385: 		fn := *(**funcval)(unsafe.Pointer(&d.fn))
		heapdump.go#L427: func finq_callback(fn *funcval, obj unsafe.Pointer, nret uintptr, fint *_type, ot *ptrtype) {
		mfinal.go#L53: 	fn   *funcval       // function to call (may be a heap pointer)
		mfinal.go#L94: func queuefinalizer(p unsafe.Pointer, fn *funcval, nret uintptr, fint *_type, ot *ptrtype) {
		mfinal.go#L144: func iterate_finq(callback func(*funcval, unsafe.Pointer, uintptr, *_type, *ptrtype)) {
		mfinal.go#L484: 		if !addfinalizer(e.data, (*funcval)(f.data), nret, fint, ot) {
		mheap.go#L1935: 	fn      *funcval // May be a heap pointer.
		mheap.go#L1942: func addfinalizer(p unsafe.Pointer, f *funcval, nret uintptr, fint *_type, ot *ptrtype) bool {
		proc.go#L4477: func newproc(fn *funcval) {
		proc.go#L4495: func newproc1(fn *funcval, callergp *g, callerpc uintptr) *g {
		runtime2.go#L199: type funcval struct {
		stack.go#L1131: func gostartcallfn(gobuf *gobuf, fv *funcval) {